1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
mod himagelist;
mod hwnd;

pub mod decl {
	pub use super::himagelist::HIMAGELIST;

	impl_handle! { HTREEITEM;
		/// Handle to a
		/// [tree view item](https://learn.microsoft.com/en-us/windows/win32/controls/tree-view-controls).
	}
}

pub mod traits {
	pub use super::himagelist::comctl_Himagelist;
	pub use super::hwnd::comctl_Hwnd;
}